Install Grunt
Next you need to setup Grunt.
This is a task runner that runs in NodeJS. Docular has grunt plugin "grunt-docular" that makes it easy to configure your own setup for generating documentation.
Installing Grunt will afford you more than just access to Docular. Grunt ships with some powerful built in tasks that almost any project can take advantage of.
Once you have Docular up and running spend some time learning the other benefits of using Grunt.
Once you install Grunt on your system, you will need to add Grunt to your project as a dependency and add a configuration file that will be used to configure all Grunt tasks including the grunt-docular plugin.
cd myProject
npm install grunt
touch Gruntfile.js
module.exports = function(grunt) { // Project configuration. grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), }); };
Now you are ready to install and configure grunt-docular!